Modifying Volume Paths
Here are the step-by-step instructions to assist Podman, Kubernetes, and Helm Charts users in effectively modifying volume paths for their respective environments.
Note
Make sure to adjust the volume paths according to your specific requirements and verify that the source and destination paths are accurate and accessible within the respective container or deployment environment.
Podman Users
1Locate the podman-compose.yaml
file inside the Podman folder.
2Open the podman-compose.yaml
file for editing.
3Look for the volumes
section in the file.
4Modify the paths in the volumes
section as desired.
5Save the changes made to the podman-compose.yaml
file.
6Restart the Podman service or recreate the Podman container using the updated configuration to apply the changes.
Kubernetes Users
1Find the relevant YAML file (for example, deployment.yaml
, lunalogs-volume.yaml
, packages-volume.yaml
, postgres-data.yaml
, serverlogs-volume.yaml
) in the Kubernetes folder.
2Open the respective YAML file for editing.
3Locate the path
field under the hostPath
section.
4Update the path value with the desired volume path.
5Save the changes made to the YAML file.
6Apply the changes.
Helm Charts Users
1Locate the values.yaml
file inside the Helm folder.
2Open the values.yaml
file for editing.
3Find the keys related to the volume paths you wish to modify (e.g., certificates
, lunalogs
, packages
, ccclogs
, pgdata
).
4Update the values associated with these keys to the desired volume paths.
5Save the changes made to the values.yaml
file.
6Deploy or update the Helm chart using the appropriate Helm command (e.g., helm install
or helm upgrade
) with the modified values.yaml
file to apply the changes to the volume paths.